home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 2
/
Atari Mega Archive CD - Volume 2.iso
/
minix
/
up1510b.tgz
/
up1510b
/
src
/
lib
/
posix
/
isatty.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-07-21
|
188b
|
13 lines
#include <lib.h>
#include <sgtty.h>
#include <minix/com.h>
int isatty(fd)
int fd;
{
_M.TTY_REQUEST = TIOCGETP;
_M.TTY_LINE = fd;
if (callx(FS, IOCTL) < 0) return(0);
return(1);
}